home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / ext2_200.zip / EXT2_SRC.ZIP / 32BITS / EXT2-OS2 / LOG.C < prev    next >
C/C++ Source or Header  |  1996-09-22  |  6KB  |  181 lines

  1. #ifdef __IBMC__
  2. #pragma strings(readonly)
  3. #endif
  4. //
  5. // $Header: D:/32bits/ext2-os2/RCS/log.c,v 1.1 1996/09/22 23:13:51 Willm Exp Willm $
  6. //
  7.  
  8. // Linux ext2 file system driver for OS/2 2.x and WARP - Allows OS/2 to
  9. // access your Linux ext2fs partitions as normal drive letters.
  10. // Copyright (C) 1995, 1996 Matthieu WILLM
  11. //
  12. // This program is free software; you can redistribute it and/or modify
  13. // it under the terms of the GNU General Public License as published by
  14. // the Free Software Foundation; either version 2 of the License, or
  15. // (at your option) any later version.
  16. //
  17. // This program is distributed in the hope that it will be useful,
  18. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. // GNU General Public License for more details.
  21. //
  22. // You should have received a copy of the GNU General Public License
  23. // along with this program; if not, write to the Free Software
  24. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26.  
  27.  
  28. #define INCL_DOSERRORS
  29. #define INCL_NOPMAPI
  30. #include <os2.h>                // From the "Developer Connection Device Driver Kit" version 2.0
  31. //#include <infoseg.h>          // From the "Developer Connection Device Driver Kit" version 2.0
  32.  
  33. #include <string.h>
  34. #include <stdarg.h>
  35. #define VA_START(ap, last) ap = ((va_list)__StackToFlat(&last)) + __nextword(last)
  36. #include <builtin.h>
  37.  
  38.  
  39. #include <os2/log.h>
  40. #include <os2/types.h>
  41. #include <os2/StackToFlat.h>
  42. #include <os2/devhlp32.h>
  43. #include <os2/fsh32.h>
  44. #include <linux/fs.h>
  45. #include <os2/os2misc.h>
  46. #include <os2/os2proto.h>
  47. #include <os2/ifsdbg.h>
  48.  
  49.  
  50. static void output_com(char *bufptr, int port);
  51.  
  52. //#ifndef MINIFSD
  53. //#pragma alloc_text(EXT2_FIXED_CODE, kernel_printf)
  54. //#pragma alloc_text(EXT2_FIXED_CODE, fs_log)
  55. //#pragma alloc_text(EXT2_FIXED_CODE, output_com)
  56. //#endif
  57.  
  58. //
  59. // Buffer used to communicate with ext2-os2.exe
  60. //
  61. char    BufMsg[BUFMSGSIZ];       // Circular buffer
  62. UINT16  BufPtr;                  // Buffer pointer
  63. UINT16  BufOpen;                 // Open flag (ext2-os2.exe present ?)
  64. UINT32  BufSem;                  // Buffer semaphore
  65.  
  66.  
  67. char debug_com  = 0;             // output debug info to COM port
  68. int  debug_port = OUTPUT_COM2;   // base I/O address of COM port
  69.  
  70. int fs_err(UINT32 infunction, UINT32 errfunction, int retcode, UINT32 sourcefile, UINT32 sourceline) {
  71.     int         rc;
  72.     err_record *Tmp;
  73.     int         i;
  74.  
  75.     i = sizeof(err_record);
  76.     if (i + BufPtr < BUFMSGSIZ) {
  77.         Tmp = (err_record *)&(BufMsg[BufPtr]);
  78.         Tmp->Type        = LOG_FS_ERR;
  79.         Tmp->infunction  = infunction;  /* function where error occured  */
  80.         Tmp->errfunction = errfunction; /* function returning error code */
  81.         Tmp->retcode     = retcode;     /* return code from errfunction  */
  82.         Tmp->sourcefile  = sourcefile;  /* file where error occured      */
  83.         Tmp->sourceline  = sourceline;  /* line number in sourcefile     */
  84.         BufPtr += i;
  85.     } else {
  86.         Tmp = (err_record *)BufMsg;
  87.         Tmp->Type        = LOG_FS_ERR;
  88.         Tmp->infunction  = infunction;  /* function where error occured  */
  89.         Tmp->errfunction = errfunction; /* function returning error code */
  90.         Tmp->retcode     = retcode;     /* return code from errfunction  */
  91.         Tmp->sourcefile  = sourcefile;  /* file where error occured      */
  92.         Tmp->sourceline  = sourceline;  /* line number in sourcefile     */
  93.         BufPtr = i;
  94.     } /* end if */
  95.  
  96.     //
  97.     // Clears the log semaphore so that ext2-os2.exe can retrieve data
  98.     //
  99.     fsh32_semclear(&BufSem);
  100.  
  101.     return NO_ERROR;
  102.  
  103. }
  104.  
  105.  
  106. /***********************************************************************************/
  107. /*** fs_log()                                                                    ***/
  108. /***********************************************************************************/
  109. int fs_log(char *text)
  110. {
  111.     int rc;
  112.  
  113.     //
  114.     // We copy the text into the circular buffer :
  115.     //   - at the current position if it fits
  116.     //   - at the buffer beginning otherwise
  117.     //
  118.     int i = strlen(text) + 1;
  119.     if (i + BufPtr < BUFMSGSIZ) {
  120.         strcpy(&(BufMsg[BufPtr]), text);
  121.         BufPtr += i;
  122.     } else {
  123.         strcpy(BufMsg, text);
  124.         BufPtr = i;
  125.     } /* end if */
  126.  
  127.     //
  128.     // Clears the log semaphore so that ext2-os2.exe can retrieve data
  129.     //
  130.     fsh32_semclear((void *)&BufSem);
  131.  
  132. #if defined (FS_TRACE) || defined (FS_TRACE_LOCKS)
  133.     FSH_YIELD();
  134. #endif
  135.     return NO_ERROR;
  136.  
  137. } /*** fs_log() ****/
  138.  
  139. static void output_com(char *bufptr, int port) {
  140.  
  141.     while (*bufptr) {
  142.         while(!(_inp(port + 5) & 0x20)); // Waits for COM port to be ready
  143.         _outp(port, *bufptr++);          // Outputs our character
  144.     }
  145.     while(!(_inp(port + 5) & 0x20));     // Waits for COM port to be ready
  146.     _outp(port, '\r');                   // Outputs our character
  147.     while(!(_inp(port + 5) & 0x20));     // Waits for COM port to be ready
  148.     _outp(port, '\n');                   // Outputs our character
  149. }
  150.  
  151. int kernel_printf(const char *fmt, ...) {
  152.     va_list arg;
  153.     char  Buf[256];
  154.     char *buf = __StackToFlat(Buf);
  155.     char *tmp = buf;
  156.  
  157.     tmp += sprintf(buf, "[%04X-%04X] ", pLocInfoSeg->LIS_CurProcID, pLocInfoSeg->LIS_CurThrdID);
  158.  
  159.     VA_START(arg, fmt);
  160.     vsprintf(tmp, fmt, arg);
  161.     va_end(arg);
  162.  
  163.     if (debug_com) {
  164.         output_com(buf, debug_port);
  165.     }
  166.  
  167.     return fs_log(buf);
  168. }
  169.  
  170.  
  171. int sprintf(char * buf, const char *fmt, ...)
  172. {
  173.         va_list args;
  174.         int i;
  175.  
  176.         VA_START(args, fmt);
  177.         i=vsprintf(buf,fmt,args);
  178.         va_end(args);
  179.         return i;
  180. }
  181.